home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / net_src.arc / cmdparse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-05-08  |  457 b   |  14 lines

  1. #define NARG        40    /* Max number of args to commands */
  2. #define POOLSIZE    400    /* Max number of chars in expanded args */
  3.  
  4. struct cmds {
  5.     char *name;        /* Name of command */
  6.     int (*func)();        /* Function to execute command */
  7.     int  argcmin;        /* Minimum number of args */
  8.     char *argc_errmsg;    /* Message to print if insufficient args */
  9.     char *exec_errmsg;    /* Message to print if function fails */
  10. };
  11. #ifndef NULLCHAR
  12. #define NULLCHAR    (char *)0
  13. #endif
  14.